home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / sprite / Version < prev    next >
Encoding:
Text File  |  1992-03-13  |  176 b   |  8 lines

  1. #!/bin/csh -f 
  2. if (! -e $1) then
  3.     echo $1 not found
  4.     exit
  5. endif
  6. set version = `strings $1 | sed -e 's/^0[0-9]*//'|grep 'SPRITE VERSION' | awk '{print $3}'`
  7. echo $version
  8.